home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-04-03 | 999 b | 44 lines | [TEXT/CWIE] |
- /*
- * MAFrameworkHdr_nd.pch++
- *
- * Script to generate the 'MAFrameworkHdr<xxx>' precompiled header for Metrowerks C/C++.
- * Copyright © 1993 metrowerks inc. All rights reserved.
- */
-
- //--------------------------------------------------------------------------------
-
- // ========================================================
- // ••• BIG RED SWITCH FOR DEBUGGING •••
- // ========================================================
- #ifndef wantDebugging
- #define wantDebugging 9 // 0=nodebug, 1=debug (finer grain control
- // can be found in CWMacAppSwitches.h)
- #endif
-
-
- #if __option(precompile)
-
- #include "CWMacAppSwitches.h"
-
- #include "CWMAFrameworkHdr.h"
-
- /*
- * Support for automatically naming the precompiled header file ...
- */
-
- #ifdef powerc
- #pragma precompile_target "MAFrameworkHdrPPC_nd"
- #else
- #pragma precompile_target "MAFrameworkHdr68K_nd"
- #endif
-
- #else
-
- #ifdef powerc
- #include "MAFrameworkHdrPPC_nd"
- #else
- #include "MAFrameworkHdr68K_nd"
- #endif
-
- #endif
-